home *** CD-ROM | disk | FTP | other *** search
/ Alles Voor Internet / Tout Pour Internet / alles voor internet.iso / MacInternet™ / Telnet / NCSA / tn3270 2.4d7 source / NCSA⁄BYU TCP⁄IP / kip.h < prev    next >
Text File  |  1991-06-27  |  1KB  |  43 lines

  1. #ifndef lint
  2. static char *SCCSid = "%W%    (NCSA)    %G%";
  3. #endif
  4. /*
  5. *    kip.h
  6. *     by Gaige B. Paulsen
  7. ****************************************************************************
  8. *                                                                          *
  9. *      Uses    :                                                               *
  10. *      TCP/IP kernel for NCSA Telnet                                       *
  11. *      by Tim Krauskopf                                                    *
  12. *       with Macintosh code by Gaige B. Paulsen                                 *
  13. *                                                                          *
  14. *      National Center for Supercomputing Applications                     *
  15. *      152 Computing Applications Building                                 *
  16. *      605 E. Springfield Ave.                                             *
  17. *      Champaign, IL  61820                                                *
  18. *                                                                          *
  19. *                                                                          *
  20. ****************************************************************************
  21. *
  22. *    KIP/Croft gateway structures.    
  23. *
  24. */
  25. struct IPGP {
  26.     long
  27.         opcode,
  28.         ipaddress,
  29.         ipname,
  30.         ipbroad,
  31.         ipfile,
  32.         ipother[4];
  33.     char
  34.         string[128];
  35.     };
  36.  
  37. typedef struct IPGP IPGP;
  38.  
  39. #define ipgpAssign    1
  40. #define ipgpName    2
  41. #define ipgpServer    3
  42. #define ipgpError    -1
  43.